home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / auto_qmail.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-29  |  270 b   |  15 lines

  1. #include "auto_qmail.h"
  2. #include <sys/types.h>
  3. #include <pwd.h>
  4.  
  5. char *auto_qmail_dir (void)
  6. {
  7.   struct passwd *pwdent;
  8.  
  9.   if ((pwdent = getpwnam ("qmails")))
  10.     return (pwdent->pw_dir);
  11.   else
  12.     /* Return something that will cause failure. */
  13.     return ("NIL:");
  14. }
  15.